github.com/klauspost/compress/zstd.bitReader.value (field)
10 uses
github.com/klauspost/compress/zstd (current package)
bitreader.go#L21: value uint64 // Maybe use [16]byte, but shifting is awkward.
bitreader.go#L39: b.value = 0
bitreader.go#L62: v := uint32((b.value << (b.bitsRead & regMask)) >> ((regMask + 1 - n) & regMask))
bitreader.go#L74: b.value = (b.value << 32) | uint64(le.Load32(b.in, b.cursor))
bitreader.go#L81: b.value = le.Load64(b.in, b.cursor)
bitreader.go#L92: b.value = (b.value << 32) | uint64(le.Load32(b.in, b.cursor))
bitreader.go#L100: b.value = (b.value << 8) | uint64(b.in[b.cursor])
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |